home *** CD-ROM | disk | FTP | other *** search
/ Get On The Internet / Get on the Internet.iso / tutorial / ptwin / les1 / les1.cmd < prev   
Encoding:
Text File  |  1995-03-03  |  26.8 KB  |  844 lines

  1. init ;
  2.         winpos 0 0 ;
  3.         winsize 640 480 ;
  4.         config __development 0 ;
  5.         config __removeclear 0 ;
  6.         config __fullscreen 1 ;
  7.         config __tipespeed 15 ;
  8.         config clock 302 ;
  9.         config __lessontitle "Lesson 1 Menu" ;
  10. endinit ;
  11.  
  12. segment "main" 0 ;
  13.     chainseg "seg_00a" ;
  14. endseg ;
  15.  
  16. function "movecursor" ;
  17.         if = __silentmode 1 ;
  18.         setcursor a_xdest a_ydest ;
  19.         goto "movedone" ;
  20.         endif ;
  21.         getcursor ;
  22.         config l_xpos __curxpos ;
  23.         config l_ypos __curypos ;
  24.         config l_xmove 10 ;
  25.         config l_ymove 10 ;
  26.         label "movenotdone" ;
  27.         if < l_xpos a_xdest ;
  28.         config l_xpos + l_xpos l_xmove ;
  29.         if < - a_xdest l_xpos 12 ;
  30.         config l_xmove 1 ;
  31.         endif ;
  32.         endif ;
  33.         if < l_ypos a_ydest ;
  34.         config l_ypos + l_ypos l_ymove ;
  35.         if < - a_ydest l_ypos 12 ;
  36.         config l_ymove 1 ;
  37.         endif ;
  38.         endif ;
  39.         if > l_xpos a_xdest ;
  40.         config l_xpos - l_xpos l_xmove ;
  41.         if < - l_xpos a_xdest 12 ;
  42.         config l_xmove 1 ;
  43.         endif ;
  44.         endif ;
  45.         if > l_ypos a_ydest ;
  46.         config l_ypos - l_ypos l_ymove ;
  47.         if < - l_ypos a_ydest 12 ;
  48.         config l_ymove 1 ;
  49.         endif ;
  50.         endif ;
  51.         setcursor l_xpos l_ypos ;
  52.         sleep 5 ;
  53.         if and = l_xpos a_xdest = l_ypos a_ydest ;
  54.         goto "movedone" ;
  55.         endif ;
  56.         goto "movenotdone" ;
  57.         label "movedone" ;
  58. endfunction ;
  59.  
  60. segment "seg_00a" 1 ;
  61.         menuitem "Course Introduction" ;
  62.         startimg "tr.pcf" 0 0 ;
  63.         config __textcolor darkcyan ;
  64.         text "tx0a" 286 39 257 22 "~f05Lesson 1:  What is the Internet?" ;
  65.         config __textcolor darkred ;
  66.         text "tx0" 356 65 118 34 "~f27Welcome" ;
  67.         startbullet 219 139 379 167 ;
  68.         bullet "b1" 1 0 "This course is designed for people who are new to the Internet." ;
  69.         bullet "b2" 1 9 "Any experience you have with Microsoft Windows will be helpful." ;
  70.         bullet "b3" 1 18 "This course focuses on what you can do with the Internet." ;
  71.         startavi "l1s.avi" "jnk1.vcw" 15 78 ;
  72.         config __removeclear 1 ;
  73.         label "askhowto" ;
  74.         textbox "tb4" 314 296 173 55 "Press the ~c01Y ~c00key to take the WinTutor tutorial." ;
  75.         textbox "tb5" 314 367 174 55 "Press the ~c01N ~c00key to skip the tutorial." ;
  76.         iuser ;
  77.         status ;
  78.         if = __returncode 21 ;
  79.         clrscr ;
  80.         sleep 1 ;
  81.         endimg ;
  82.         endavi ;
  83.         chainseg "ht_seg1" ;
  84.         endif ;
  85.         if = __returncode 121 ;
  86.         clrscr ;
  87.         sleep 1 ;
  88.         endimg ;
  89.         endavi ;
  90.         chainseg "ht_seg1" ;
  91.         endif ;
  92.         if = __returncode 49 ;
  93.         clrscr ;
  94.         sleep 1 ;
  95.         endimg ;
  96.         endavi ;
  97.         chainseg "seg_00b" ;
  98.         endif ;
  99.         if = __returncode 149 ;
  100.         clrscr ;
  101.         sleep 1 ;
  102.         endimg ;
  103.         endavi ;
  104.         chainseg "seg_000b" ;
  105.         endif ;
  106.         goto "askhowto" ;
  107. endseg ;
  108.  
  109. segment "ht_seg1" 1 ;
  110.         hourglass 1 ;
  111.         menuitem "How to Use WinTutor" ;
  112.         startaud "wintut_1.wav" "wintut_1.vcw" 0 ;
  113.         startimg "blackbd.pcf" 0 0 ;
  114.         config __textcolor darkcyan ;
  115.         text "tx5" 245 75 219 31 "~f26How to Use WinTutor" ;
  116.         hourglass 0 ;
  117.     frame ;
  118.         text "tx1" 101 111 240 25 "In this tutorial you will learn how to:" ;
  119.         startbullet 80 120 484 270 ;
  120.         config __bullettextcolor white ;
  121.         bullet "b2" 1 4 "Work with the WinTutor Status Bar" ;
  122.     frame ;
  123.         bullet "b3" 1 8 "Choose a lesson using the Course Menu" ;
  124.     frame ;
  125.         bullet "b4" 1 12 "Get training for a specific topic using the Course Index" ;
  126.     frame ;
  127.         bullet "b5" 1 16 "Work with WinTutor's simulations" ;
  128.     frame ;
  129.         bullet "b6" 1 20 "Move around a lesson using the Lesson Menu" ;
  130.     frame ;
  131.         pauseaud ;
  132.         status "Click your mouse when you are ready to continue." ;
  133.         anykeymouse 17 ;
  134.         config __removeclear 1 ;
  135.         status ;
  136.         clrscr ;
  137.         endaud ;
  138.         endimg ;
  139.     chainseg "ht_seg2" ;
  140. endseg ;
  141.  
  142. segment "ht_seg2" 1 ;
  143.         menuitem "The WinTutor Status Bar" ;
  144.         hourglass 1 ;
  145.         config __removeclear 0 ;
  146.         config __imageheight 460 ;
  147.         startimg "htseg2.pcf" 0 0 ;
  148.         config __doborder 0 ;
  149.         config __rectcolor white ;
  150.         config __textfont 2 ;
  151.         config __fontweight2 normal ;
  152.         rect "r0" 476 119 91 15 ;
  153.         text "tx0" 502 122 100 30 "Softkey" ;
  154.         config __textfont 3 ;
  155.         startaud "wintut_2.wav" "wintut_2.vcw" 0 ;
  156.         hourglass 0 ;
  157.     frame ;
  158.         config __arrowcolor darkred ;
  159.         config __removeclear 1 ;
  160.         arrow "a1" 309 - - __screenheight 30 __clientyoffset 3 ;
  161.         textbox "tb1" 220 - - __screenheight 111 __clientyoffset 165 38 "WinTutor Status Bar" ;
  162.     frame ;
  163.         remove "a1" "tb1" ;
  164.         arrow "a2" - 30 __clientxoffset - - __screenheight 30 __clientyoffset 3 ;
  165.         arrow "a3" - 90 __clientxoffset - - __screenheight 30 __clientyoffset 3 ;
  166.         arrow "a4" - 137 __clientxoffset - - __screenheight 30 __clientyoffset 3 ;
  167.         arrow "a5" - 175 __clientxoffset - - __screenheight 30 __clientyoffset 3 ;
  168.         arrow "a6" - 210 __clientxoffset - - __screenheight 30 __clientyoffset 3 ;
  169.     frame ;
  170.         arrow "a1" 329 - - __screenheight 30 __clientyoffset 3 ;
  171.         remove "a2" "a3" "a4" "a5" "a6" ;
  172.     frame ;
  173.         remove "a1" ;
  174.     frame ;
  175.         arrow "a1" 309 - - __screenheight 30 __clientyoffset 3 ;
  176.         textbox "tb1" 167 - - __screenheight 140 __clientyoffset 300 55 "Instructions telling you what you need to do will appear here." ;
  177.     frame ;
  178.         pauseaud ;
  179.         remove "a1" "tb1" ;
  180.         status "Please press your <Enter> key." ;
  181.         ikey 28 ;
  182.         status ;
  183.         resumeaud ;
  184.     frame ;
  185.         config __removeclear 0 ;
  186.         textbox "tb1" 409 24 223 55 "This time press the wrong key on purpose." ;
  187.     frame ;
  188.         textbox "tb2" 410 93 223 38 "You'll see a Message Window." ;
  189.     frame ;
  190.         textbox "tb3" 411 145 222 55 "Click the ~c01OK ~c00Button in the Message Window." ;
  191.     frame ;
  192.         textbox "tb4" 411 216 222 42 "Press the correct key." ;
  193.     frame ;
  194.         pauseaud ;
  195.         status "Press your <Enter> key again." ;
  196.         ikey 28 ;
  197.         status ;
  198.         remove "tb1" "tb2" "tb3" "tb4" ;
  199.         resumeaud ;
  200.     frame ;
  201.         menuitem "Starting a WinTutor Lesson" ;
  202.         arrow "a1" 521 135 1 ;
  203.     frame ;
  204.         pauseaud ;
  205.         status "Double-click the Softkey group icon." ;
  206.         imouse 4 477 88 86 44 ;
  207.         status ;
  208.         clrscr ;
  209.         nextimg ;
  210.         config __rectcolor medblue ;
  211.         rect "r13" 178 124 130 16 ;
  212.         config __textcolor white ;
  213.         config __textfont 3 ;
  214.         text "tx13" 213 124 141 22 "Softkey" ;
  215.         resumeaud ;
  216.     frame ;
  217.         arrow "a1" 283 275 1 ;
  218.     frame ;
  219.         pauseaud ;
  220.         status "Double-click the Learning Windows icon." ;
  221.         imouse 4 255 215 64 59 ;
  222.         status ;
  223.         clrscr ;
  224.         bitmap "bit1" "bitdll.dll" "BIT_HEADER" 70 28 ;
  225.         config __imageheight 0 ;
  226.         config __rectcolor darkgray ;
  227.         rect "r15" 306 376 128 17 ;
  228.         config __textcolor yellow ;
  229.         text "tx15" 310 378 128 17 "WinTutor" ;
  230.         config __rectcolor medblue ;
  231.         rect "r15a" 198 5 223 15 ;
  232.         config __textcolor white ;
  233.         text "tx15a" 277 5 200 100 "WinTutor" ;
  234.         nextimg ;
  235.         resumeaud ;
  236.     frame ;
  237.         box "b1" 119 137 387 214 ;
  238.     frame ;
  239.         remove "b1" ;
  240.         textbox "tb1" 465 162 166 84 "To choose a lesson, highlight it with your Arrow Keys and press ENTER." ;
  241.     frame ;
  242.         pauseaud ;
  243.         status "Press your <Down Arrow> key." ;
  244.         ikey 80 ;
  245.         remove "tb1" ;
  246.         nextimg ;
  247.         status "Press your <Down Arrow> key again." ;
  248.         ikey 80 ;
  249.         status ;
  250.         nextimg ;
  251.         resumeaud ;
  252.     frame ;
  253.         box "b1" 155 285 192 24 ;
  254.     frame ;
  255.         remove "b1" ;
  256.         arrow "a1" 553 373 4 ;
  257.         arrow "a2" 553 345 4 ;
  258.         arrow "a3" 553 405 4 ;
  259.         arrow "a20" 553 435 4 ;
  260.     frame ;
  261.         remove "a1" "a2" "a3" ;
  262.     frame ;
  263.         remove "a20" ;
  264.         arrow "a1" 553 345 4 ;
  265.     frame ;
  266.         menuitem "Using the Course Index" ;
  267.         remove "a1" ;
  268.         arrow "a2" 553 405 4 ;
  269.     frame ;
  270.         pauseaud ;
  271.         status "Click the Index button." ;
  272.         imouse 1 483 393 63 23 ;
  273.         status ;
  274.         clrscr ;
  275.         config __rectcolor white ;
  276.         rect "r24" 213 267 270 18 ;
  277.         config __textcolor black ;
  278.         text "tx24" 216 267 233 18 "WinTutor topic, just double-click on" ;
  279.         rect "r24a" 199 5 220 15 ;
  280.         text "tx24a" 233 5 270 19 "WinTutor Course Menu" ;
  281.         nextimg ;
  282.         resumeaud ;
  283.     frame ;
  284.         box "b1" 140 117 341 139 ;
  285.     frame ;
  286.         remove "b1" ;
  287.         arrow "a1" 489 204 4 ;
  288.         textbox "tb1" 529 185 92 36 "Scroll Bar" ;
  289.     frame ;
  290.         remove "a1" "tb1" ;
  291.         arrow "a1" 497 227 4 ;
  292.     frame ;
  293.         remove "a1" ;
  294.         arrow "a1" 498 138 4 ;
  295.     frame ;
  296.         pauseaud ;
  297.         remove "a1" ;
  298.         arrow "a1" 491 230 4 ;
  299.         status "Click just above the Down Arrow on the scroll bar." ;
  300.         imouse 1 479 153 16 81 ;
  301.         nextimg ;
  302.         status "Click just above the Down Arrow on the scroll bar again." ;
  303.         imouse 1 479 186 16 62 ;
  304.         status ;
  305.         remove "a1" ;
  306.         nextimg ;
  307.         arrow "a2" 246 147 4 ;
  308.         resumeaud ;
  309.     frame ;
  310.         remove "a2" ;
  311.         box "b1" 140 258 358 69 ;
  312.         touch "r24" "tx24" ;
  313.     frame ;
  314.         pauseaud ;
  315.         remove "b1" ;
  316.         status "Please press your \" h \" key." ;
  317.         istring 0 "h" ;
  318.         status ;
  319.         nextimg ;
  320.         resumeaud ;
  321.     frame ;
  322.         arrow "a1" 255 228 4 ;
  323.     frame ;
  324.         pauseaud ;
  325.         remove "a1" ;
  326.         status "Click the Cancel button." ;
  327.         imouse 1 276 353 83 28 ;
  328.         clrscr ;
  329.         bitmap "bit1" "bitdll.dll" "BIT_HEADER" 70 28 ;
  330.         config __imageheight 0 ;
  331.         config __rectcolor darkgray ;
  332.         rect "r15" 306 376 128 17 ;
  333.         config __textcolor yellow ;
  334.         text "tx15" 310 378 128 17 "WinTutor" ;
  335.         config __rectcolor medblue ;
  336.         rect "r15a" 198 5 223 15 ;
  337.         config __textcolor white ;
  338.         text "tx15a" 300 5 200 100 "WinTutor" ;
  339.         status ;
  340.         nextimg ;
  341.         resumeaud ;
  342.     frame ;
  343.         arrow "a34" 551 374 4 ;
  344.     frame ;
  345.         pauseaud ;
  346.         status "Click the Help button." ;
  347.         imouse 1 484 363 62 23 ;
  348.         clrscr ;
  349.         config __rectcolor medblue ;
  350.         rect "r35" 295 10 165 19 ;
  351.         text "tx35" 329 9 205 22 "WinTutor Help" ;
  352.         status ;
  353.         nextimg ;
  354.         remove "a34" ;
  355.         resumeaud ;
  356.     frame ;
  357.         pauseaud ;
  358.         status "Double-click this button." ;
  359.         arrow "a36" 150 28 1 ;
  360.         imouse 4 141 8 18 19 ;
  361.         clrscr ;
  362.         bitmap "bit1" "bitdll.dll" "BIT_HEADER" 70 28 ;
  363.         config __imageheight 0 ;
  364.         config __rectcolor darkgray ;
  365.         rect "r15" 306 376 128 17 ;
  366.         config __textcolor yellow ;
  367.         text "tx15" 310 378 128 17 "WinTutor" ;
  368.         config __rectcolor medblue ;
  369.         rect "r15a" 198 5 223 15 ;
  370.         config __textcolor white ;
  371.         text "tx15a" 303 5 200 100 "WinTutor" ;
  372.         status ;
  373.         nextimg ;
  374.         resumeaud ;
  375.     frame ;
  376.         pauseaud ;
  377.         status "Press your <Enter> key to start Lesson 3." ;
  378.         ikey 28 ;
  379.         status ;
  380.         bitmap "bt1" "howtodll.dll" "BIT_LOAD" 155 207 ;
  381.         resumeaud ;
  382.     frame ;
  383.         endaud ;
  384.         config __removeclear 1 ;
  385.         clrscr ;
  386.         endimg ;
  387.     chainseg "ht_seg3" ;
  388. endseg ;
  389.  
  390. segment "ht_seg3" 1 ;
  391.         hourglass 1 ;
  392.         config __removeclear 0 ;
  393.         config __imageheight 440 ;
  394.         startimg "htseg3.pcf" 0 0 ;
  395.         bitmap "b1" "howtodll.dll" "HEADERD" 58 58 ;
  396.         config __doborder 0 ;
  397.         startaud "wintut_3.wav" "wintut_3.vcw" 0 ;
  398.         hourglass 0 ;
  399.     frame ;
  400.         clrscr ;
  401.         nextimg ;
  402.     frame ;
  403.         textbox "tb2" 406 56 162 67 "This is a simulation of a Windows session, not the real thing." ;
  404.     frame ;
  405.         textbox "tb3" 407 135 220 85 "For example, double-clicking the Calendar Icon will have no effect unless the Status Bar prompts you to double-click it." ;
  406.     frame ;
  407.         textbox "tb4" 408 233 219 103 "If you're instructed to double-click the Calculator icon and you click something else, you'll get an error message." ;
  408.     frame ;
  409.         pauseaud ;
  410.         status "Click your mouse to continue." ;
  411.         anykeymouse 17 ;
  412.         status ;
  413.         clrscr ;
  414.         resumeaud ;
  415.     frame ;
  416.         menuitem "The Pause/Resume Button" ;
  417.         config __arrowcolor darkred ;
  418.         arrow "a2" - 30 __clientxoffset - - __screenheight 30 __clientyoffset 3 ;
  419.         arrow "a3" - 90 __clientxoffset - - __screenheight 30 __clientyoffset 3 ;
  420.         arrow "a4" - 137 __clientxoffset - - __screenheight 30 __clientyoffset 3 ;
  421.         arrow "a5" - 175 __clientxoffset - - __screenheight 30 __clientyoffset 3 ;
  422.         arrow "a6" - 210 __clientxoffset - - __screenheight 30 __clientyoffset 3 ;
  423.     frame ;
  424.         config __removeclear 1 ;
  425.         remove "a6" "a3" "a4" "a5" ;
  426.     frame ;
  427.         remove "a2" ;
  428.         textbox "tb1" 185 190 209 38 "Try using the ~c01Pause ~c00Button." ;
  429.     frame ;
  430.         config __removeclear 0 ;
  431.         textbox "tb2" 184 241 210 36 "Click the Pause Button." ;
  432.     frame ;
  433.         textbox "tb3" 184 291 210 39 "Then click the ~c01Resume ~c00Button." ;
  434.     frame ;
  435.         textbox "tb4" 184 342 213 38 "Do this now." ;
  436.     frame ;
  437.         menuitem "The Backup Button" ;
  438.         clrscr ;
  439.     frame ;
  440.         arrow "a3" - 90 __clientxoffset - - __screenheight 30 __clientyoffset 3 ;
  441.     frame ;
  442.         pauseaud ;
  443.         config __removeclear 1 ;
  444.         remove "a3" ;
  445.         config a_xdest - 82 __clientxoffset ;
  446.         config a_ydest - - __screenheight 15 __clientyoffset ;
  447.         call "movecursor" ;
  448.         resumeaud ;
  449.     frame ;
  450.         config __bitmapcut 1 ;
  451.         bitmap "bt1" "howtodll.dll" "BIT_BACK" - 61 __clientxoffset - - __screenheight 90 __clientyoffset ;
  452.     frame ;
  453.         arrow "a3" - 121 __clientxoffset - - __screenheight 80 __clientyoffset 4 ;
  454.     frame ;
  455.         remove "a3" ;
  456.         arrow "a4" - 121 __clientxoffset - - __screenheight 48 __clientyoffset 4 ;
  457.     frame ;
  458.         pauseaud ;
  459.         remove "a4" ;
  460.         config a_xdest - 125 __clientxoffset ;
  461.         config a_ydest - - __screenheight 60 __clientyoffset ;
  462.         call "movecursor" ;
  463.         resumeaud ;
  464.     frame ;
  465.         remove "bt1" ;
  466.     frame ;
  467.         arrow "a5" - 175 __clientxoffset - - __screenheight 30 __clientyoffset 3 ;
  468.     frame ;
  469.         remove "a5" ;
  470.         arrow "a6" - 210 __clientxoffset - - __screenheight 30 __clientyoffset 3 ;
  471.     frame ;
  472.         remove "a6" ;
  473.         arrow "a2" - 30 __clientxoffset - - __screenheight 30 __clientyoffset 3 ;
  474.         arrow "a3" - 90 __clientxoffset - - __screenheight 30 __clientyoffset 3 ;
  475.         arrow "a4" - 137 __clientxoffset - - __screenheight 30 __clientyoffset 3 ;
  476.         textbox "tb1" 5 351 235 58 "These buttons are active only when the audio is running." ;
  477.     frame ;
  478.         textbox "tb2" 277 353 236 57 "They won't work if the lesson is waiting for input from you." ;
  479.     frame ;
  480.         remove "a2" "a3" "a4" "tb1" "tb2" ;
  481.         arrow "a5" - 175 __clientxoffset - - __screenheight 30 __clientyoffset 3 ;
  482.         arrow "a6" - 210 __clientxoffset - - __screenheight 30 __clientyoffset 3 ;
  483.         textbox "tb23" 125 369 143 53 "These buttons are always active." ;
  484.     frame ;
  485.         menuitem "The Lesson Menu" ;
  486.         remove "a5" "a6" "tb23" ;
  487.         arrow "a4" - 137 __clientxoffset - - __screenheight 30 __clientyoffset 3 ;
  488.     frame ;
  489.         config __removeclear 1 ;
  490.         pauseaud ;
  491.         remove "a4" ;
  492.         config __removeclear 0 ;
  493.         config a_xdest - 137 __clientxoffset ;
  494.         config a_ydest - - __screenheight 15 __clientyoffset ;
  495.         call "movecursor" ;
  496.         resumeaud ;
  497.     frame ;
  498.         nextimg ;
  499.     frame ;
  500.         arrow "a1" 263 374 1 ;
  501.     frame ;
  502.         remove "a1" ;
  503.         box "b1" 124 120 371 216 ;
  504.     frame ;
  505.         remove "b1" ;
  506.         arrow "a1" 506 235 4 ;
  507.         textbox "tb1" 542 217 93 37 "Scroll Bar" ;
  508.     frame ;
  509.         remove "a1" "tb1" ;
  510.         textbox "tb1" 483 11 154 105 "The highlighted topic is the topic you were in when you pressed the Menu Button." ;
  511.     frame ;
  512.         textbox "tb2" 483 129 154 86 "If you miss a point, click the Menu Button, then click the OK button." ;
  513.     frame ;
  514.         textbox "tb3" 483 230 154 91 "You will start the lesson over at the beginning of the topic you were in." ;
  515.     frame ;
  516.         pauseaud ;
  517.         status "Click the Cancel button." ;
  518.         imouse 1 220 344 91 29 ;
  519.         clrscr ;
  520.         status ;
  521.         endimg ;
  522.         startimg "htseg3.pcf" 0 0 ;
  523.         nextimg ;
  524.         resumeaud ;
  525.     frame ;
  526.         pauseaud ;
  527.         status "Click your mouse to return to Lesson 1." ;
  528.         anykeymouse 17 ;
  529.         endaud ;
  530.         status ;
  531.         endimg ;
  532.         clrscr ;
  533.     chainseg "seg_00b" ;
  534. endseg ;
  535.  
  536. segment "seg_00b" 1 ;
  537.         menuitem "Lesson Introduction" ;
  538.         startimg "tr.pcf" 0 0 ;
  539.         config __textcolor darkcyan ;
  540.         text "tx0a" 286 39 257 22 "~f05Lesson 1:  What is the Internet?" ;
  541.         config __textcolor darkred ;
  542.         text "tx0" 356 65 118 34 "~f27Welcome" ;
  543.         config __textcolor medblue ;
  544.         text "tx1" 244 139 279 33 "~f26In this lesson you will:" ;
  545.         startbullet 219 180 379 167 ;
  546.         bullet "b3" 1 0 "Learn what the Internet is" ;
  547.         bullet "b4" 1 6 "Briefly examine the history of the Internet" ;
  548.         bullet "b5" 1 12 "Discover what you can do on the Internet" ;
  549.         bullet "b6" 1 18 "Look over the \"Exploring the Internet\" course outline" ;
  550.         startavi "l1ss.avi" "jnk1.vcw" 15 78 ;
  551.         status "Click to continue..." ;
  552.         anykeymouse 31 ;
  553.         status ;
  554.         clrscr ;
  555.         endimg ;
  556.         endavi ;
  557.     chainseg "seg_01" ;
  558. endseg ;
  559.  
  560. segment "seg_01" 1 ;
  561.         menuitem "What is the Internet?" ;
  562.         startimg "tr.pcf" 0 0 ;
  563.         nextimg ;
  564.         config __dopalette 1 ;
  565.         bitmap "bit1" "internet.dll" "COMP2" 264 47 ;
  566.         config __boxcolor medblue ;
  567.         box "bx1" 264 47 90 70 ;
  568.         bitmap "bit2" "internet.dll" "COMP2" 97 122 ;
  569.         box "bx2" 97 122 90 70 ;
  570.         bitmap "bit3" "internet.dll" "COMP2" 46 264 ;
  571.         box "bx3" 46 264 90 70 ;
  572.         bitmap "bit4" "internet.dll" "COMP2" 183 373 ;
  573.         box "bx4" 183 373 90 70 ;
  574.         bitmap "bit5" "internet.dll" "COMP2" 509 260 ;
  575.         box "bx5" 509 260 90 70 ;
  576.         bitmap "bit6" "internet.dll" "COMP2" 435 117 ;
  577.         box "bx6" 435 117 90 70 ;
  578.         bitmap "bit7" "internet.dll" "COMP2" 351 374 ;
  579.         box "bx7" 351 374 90 70 ;
  580.         startaud "net_1_1.wav" "net_1_1.vcw" 0 ;
  581.     frame ;
  582.         textbox "tb1" 222 158 197 89 "The ~c01Internet ~c00is a loosely connected network of several million computers, located all over the world." ;
  583.     frame ;
  584.         textbox "tb2" 222 263 197 89 "When you are connected to the Internet, you can access information stored on most of these computers." ;
  585.     frame ;
  586.         pauseaud ;
  587.         status "Click to continue..." ;
  588.         anykeymouse 17 ;
  589.         status ;
  590.         clrscr ;
  591.         config __dopalette 0 ;
  592.         config __bitmapontrans 1 ;
  593.         config __bitmapontcolor green ;
  594.         bitmap "bit3" "internet.dll" "HIWYSIGN" 38 60 ;
  595.         resumeaud ;
  596.     frame ;
  597.         textbox "tb4" 318 203 216 74 "The Internet is currently the closest thing to the proverbial ~c01Information Super Highway." ;
  598.     frame ;
  599.         menuitem "Internet History 101" ;
  600.         clrscr ;
  601.         endimg ;
  602.         startimg "blackbd.pcf" 0 0 ;
  603.         config __textcolor darkcyan ;
  604.         text "tx5" 245 75 219 31 "~f26Internet History 101" ;
  605.     frame ;
  606.         startbullet 80 100 484 270 ;
  607.         config __bullettextcolor white ;
  608.         bullet "b6" 1 0 "During the 1960s computer scientists began exploring ways to connect remote computers." ;
  609.     frame ;
  610.         bullet "b7" 1 8 "During the late 1960s the government funded an experimental network, called \"ARPANET.\"" ;
  611.     frame ;
  612.         bullet "b8" 1 16 "ARPANET research led to \"TCP/IP\", which is a language computers use to talk to each other." ;
  613.     frame ;
  614.         bullet "b9" 1 24 "In 1983 the Internet was born.  It consisted of 213 computers connected to the ARPNET using TCP/IP." ;
  615.     frame ;
  616.         bullet "b10" 1 32 "Today there are several MILLION computers connected to the Net." ;
  617.     frame ;
  618.         bullet "b11" 1 37 "Each computer on the Net is responsible for maintaining itself and its connection to the Net." ;
  619.     frame ;
  620.         pauseaud ;
  621.         status "Click to continue..." ;
  622.         anykeymouse 17 ;
  623.         status ;
  624.         clrscr ;
  625.         endimg ;
  626.         endaud ;
  627.     chainseg "seg_02" ;
  628. endseg ;
  629.  
  630. segment "seg_02" 1 ;
  631.         menuitem "Things you can do on the Net" ;
  632.         startimg "tr.pcf" 0 0 ;
  633.         nextimg ;
  634.         config __bitmapontrans 0 ;
  635.         config __bitmapontcolor green ;
  636.         bitmap "bit1" "internet.dll" "EMAIL" 40 80 ;
  637.         bitmap "bit2" "internet.dll" "NEWSPAPR" 200 80 ;
  638.         bitmap "bit3" "internet.dll" "FOLDER" 360 80 ;
  639.         config __rectcolor medblue ;
  640.         rect "r0" 360 80 100 100 ;
  641.         bitmap "bit3a" "internet.dll" "FILE" 390 80 ;
  642.         bitmap "bit3b" "internet.dll" "FILE" 397 111 ;
  643.         bitmap "bit3c" "internet.dll" "FOLDER" 378 133 ;
  644.         bitmap "bit3d" "internet.dll" "FILE" 360 150 ;
  645.         bitmap "bit3e" "internet.dll" "FOLDER" 436 86 ;
  646.         bitmap "bit3f" "internet.dll" "FILE" 426 123 ;
  647.         bitmap "bit3g" "internet.dll" "FILE" 427 156 ;
  648.         bitmap "bit3h" "internet.dll" "FOLDER" 399 154 ;
  649.         bitmap "bit4" "internet.dll" "WWW" 508 80 ;
  650.         config __textcolor white ;
  651.         text "tx0" 200 45 240 31 "~f26Things you can do on the Net:" ;
  652.         startaud "net_1_2.wav" "net_1_2.vcw" 0 ;
  653.     frame ;
  654.         textbox "tb1" 15 206 149 102 "~c01Email ~c00lets you compose a message and send it to anyone having an email address." ;
  655.     frame ;
  656.         config __bitmaponfx 107 ;
  657.         config __bitmapongrain 10 ;
  658.         config __bitmaponsubgrain 10 ;
  659.         config __bitmapondur 1000 ;
  660.         config __bitmapontcolor green ;
  661.         config __bitmapontrans 1 ;
  662.         bitmap "bit5" "internet.dll" "WIZ" 470 251 ;
  663.     frame ;
  664.         config __bitmaponfx 0 ;
  665.         bitmap "bit6" "internet.dll" "CLOUD2" 384 188 ;
  666.         config __textfont 2 ;
  667.         config __textcolor medblue ;
  668.         text "tx3" 406 207 85 43 "But what about mailing lists?" ;
  669.     frame ;
  670.         textbox "tb3" 15 328 149 102 "You can join email ~c01mailing lists ~c00to send and receive mail to and from everyone on the list." ;
  671.         remove "bit5" "bit6" "tx3" ;
  672.     frame ;
  673.     frame ;
  674.         textbox "tb5" 183 206 130 102 "~c01Use Net ~c00lets you join a newsgroup concerning a specific topic." ;
  675.     frame ;
  676.         textbox "tb6" 183 328 130 102 "You receive all ~c01articles ~c00sent to the group via email." ;
  677.     frame ;
  678.         textbox "tb7" 340 206 130 102 "The most popular feature of the Net is ~c01retrieving information." ;
  679.     frame ;
  680.         textbox "tb8" 340 328 130 102 "This course will teach you how to ~c01surf the net ~c00for information." ;
  681.     frame ;
  682.         textbox "tb9" 486 206 143 102 "The ~c01World Wide Web ~c00 lets you receive information in multimedia format." ;
  683.     frame ;
  684.         textbox "tb10" 487 328 143 100 "Many businesses use the Web to ~c01advertise." ;
  685.     frame ;
  686.         pauseaud ;
  687.         status "Click to continue..." ;
  688.         anykeymouse 17 ;
  689.         status ;
  690.         clrscr ;
  691.         endimg ;
  692.         endaud ;
  693.     chainseg "seg_03" ;
  694. endseg ;
  695.  
  696. segment "seg_03" 1 ;
  697.         menuitem "Course Outline" ;
  698.         startimg "tr.pcf" 0 0 ;
  699.         nextimg ;
  700.         config __textcolor white ;
  701.         text "tx0" 250 36 140 31 "~f26Course Outline:" ;
  702.         startaud "net_1_3.wav" "net_1_3.vcw" 0 ;
  703.     frame ;
  704.         textbox "tb0" 35 90 270 62 "~c01Lesson 2 ~n~c00Connecting to the Internet" ;
  705.     frame ;
  706.         textbox "tx1" 35 195 270 62 "~c01Lesson 3 ~n~c00Sending and Receiving Electronic Mail" ;
  707.     frame ;
  708.         textbox "tx2" 35 300 270 62 "~c01Lesson 4 ~n~c00Working with UseNet Newsgroups" ;
  709.     frame ;
  710.         textbox "tx3" 342 90 270 62 "~c01Lesson 5 ~n~c00Finding and Getting Information" ;
  711.     frame ;
  712.         textbox "tx4" 342 195 270 62 "~c01Lesson 6 ~n~c00Wandering the World Wide Web" ;
  713.     frame ;
  714.         pauseaud ;
  715.         status "Click to continue..." ;
  716.         anykeymouse 17 ;
  717.         status ;
  718.         clrscr ;
  719.         endimg ;
  720.         endaud ;
  721.     chainseg "seg_rev" ;
  722. endseg ;
  723.  
  724. segment "seg_rev" 1 ;
  725.         menuitem "Lesson Review" ;
  726.         startimg "tr.pcf" 0 0 ;
  727.         config __textcolor darkcyan ;
  728.         text "tx0a" 286 39 257 22 "~f05Lesson 1:  What is the Internet?" ;
  729.         config __textcolor darkred ;
  730.         text "tx0" 369 65 92 32 "~f27Review" ;
  731.         config __textcolor medblue ;
  732.         text "tx1" 244 139 279 33 "~f26In this lesson you learned:" ;
  733.         startbullet 219 180 379 167 ;
  734.         bullet "b3" 1 0 "What the Internet is" ;
  735.         bullet "b4" 1 6 "The history of the Internet" ;
  736.         bullet "b5" 1 12 "What you can do on the Internet" ;
  737.         bullet "b6" 1 18 "The \"Exploring the Internet\" course outline" ;
  738.         startaud "net_1_r.wav" "net_1_r.vcw" 0 ;
  739.     frame ;
  740.         pauseaud ;
  741.         status "Click to begin the Review." ;
  742.         anykeymouse 31 ;
  743.         status "" ;
  744.         clrscr ;
  745.         nextimg ;
  746.         config __dopalette 1 ;
  747.         bitmap "bit1" "internet.dll" "COMP2" 264 47 ;
  748.         config __boxcolor medblue ;
  749.         box "bx1" 264 47 90 70 ;
  750.         bitmap "bit2" "internet.dll" "COMP2" 97 122 ;
  751.         box "bx2" 97 122 90 70 ;
  752.         bitmap "bit3" "internet.dll" "COMP2" 46 264 ;
  753.         box "bx3" 46 264 90 70 ;
  754.         bitmap "bit4" "internet.dll" "COMP2" 183 373 ;
  755.         box "bx4" 183 373 90 70 ;
  756.         bitmap "bit5" "internet.dll" "COMP2" 509 260 ;
  757.         box "bx5" 509 260 90 70 ;
  758.         bitmap "bit6" "internet.dll" "COMP2" 435 117 ;
  759.         box "bx6" 435 117 90 70 ;
  760.         bitmap "bit7" "internet.dll" "COMP2" 351 374 ;
  761.         box "bx7" 351 374 90 70 ;
  762.         textbox "tb1" 222 158 197 89 "The ~c01Internet ~c00is a loosely connected network of several million computers, located all over the world." ;
  763.         textbox "tb2" 222 263 197 89 "When you are connected to the Internet, you can access information stored on most of these computers." ;
  764.         status "Click to continue..." ;
  765.         anykeymouse 31 ;
  766.         clrscr ;
  767.         endimg ;
  768.         startimg "blackbd.pcf" 0 0 ;
  769.         config __textcolor darkcyan ;
  770.         text "tx5" 245 75 219 31 "~f26Internet History 101" ;
  771.         startbullet 80 100 484 270 ;
  772.         config __bullettextcolor white ;
  773.         bullet "b6" 1 0 "During the 1960s computer scientists began exploring ways to connect remote computers." ;
  774.         bullet "b7" 1 8 "During the late 1960s the government funded an experimental network, called \"ARPANET.\"" ;
  775.         bullet "b8" 1 16 "ARPANET research led to \"TCP/IP\", which is a language computers use to talk to each other." ;
  776.         bullet "b9" 1 24 "In 1983 the Internet was born.  It consisted of 213 computers connected to the ARPNET using TCP/IP." ;
  777.         bullet "b10" 1 32 "Today there are several MILLION computers connected to the Net." ;
  778.         bullet "b11" 1 37 "Each computer on the Net is responsible for maintaining itself and its connection to the Net." ;
  779.         anykeymouse 31 ;
  780.         clrscr ;
  781.         endimg ;
  782.         startimg "tr.pcf" 0 0 ;
  783.         nextimg ;
  784.         config __bitmapontrans 0 ;
  785.         config __bitmapontcolor green ;
  786.         bitmap "bit1" "internet.dll" "EMAIL" 40 80 ;
  787.         bitmap "bit2" "internet.dll" "NEWSPAPR" 200 80 ;
  788.         config __rectcolor medblue ;
  789.         rect "r0" 360 80 100 100 ;
  790.         bitmap "bit3a" "internet.dll" "FILE" 390 80 ;
  791.         bitmap "bit3b" "internet.dll" "FILE" 397 111 ;
  792.         bitmap "bit3c" "internet.dll" "FOLDER" 378 133 ;
  793.         bitmap "bit3d" "internet.dll" "FILE" 360 150 ;
  794.         bitmap "bit3e" "internet.dll" "FOLDER" 436 86 ;
  795.         bitmap "bit3f" "internet.dll" "FILE" 426 123 ;
  796.         bitmap "bit3g" "internet.dll" "FILE" 427 156 ;
  797.         bitmap "bit3h" "internet.dll" "FOLDER" 399 154 ;
  798.         bitmap "bit4" "internet.dll" "WWW" 508 80 ;
  799.         config __bitmapontrans 1 ;
  800.         config __boxcolor black ;
  801.         box "bx0" 360 80 100 100 ;
  802.         config __textcolor white ;
  803.         text "tx0" 200 45 240 31 "~f26Things you can do on the Net:" ;
  804.         textbox "tb1" 15 206 149 102 "~c01Email ~c00lets you compose a message and send it to anyone having an email address." ;
  805.         textbox "tb3" 15 328 149 102 "You can join email ~c01mailing lists ~c00to send and receive mail to and from everyone on the list." ;
  806.         textbox "tb5" 183 206 130 102 "~c01Use Net ~c00lets you join a newsgroup concerning a specific topic." ;
  807.         textbox "tb6" 183 328 130 102 "You receive all ~c01articles ~c00sent to the group via email." ;
  808.         textbox "tb7" 340 206 130 102 "The most popular feature of the Net is ~c01retrieving information." ;
  809.         textbox "tb8" 340 328 130 102 "This course will teach you how to ~c01surf the net ~c00for information." ;
  810.         textbox "tb9" 486 206 143 102 "The ~c01World Wide Web ~c00 lets you receive information in multimedia format." ;
  811.         textbox "tb10" 487 328 143 100 "Many businesses use the Web to ~c01advertise." ;
  812.         anykeymouse 17 ;
  813.         status ;
  814.         clrscr ;
  815.         endimg ;
  816.         endaud ;
  817.     chainseg "seg_end" ;
  818. endseg ;
  819.  
  820. segment "seg_end" 1 ;
  821.         menuitem "Lesson Conclusion" ;
  822.         startimg "tr.pcf" 0 0 ;
  823.         config __textcolor darkcyan ;
  824.         text "tx0a" 286 39 257 22 "~f05Lesson 1:  What is the Internet?" ;
  825.         config __textcolor darkred ;
  826.         text "tx0" 340 65 150 31 "~f27Conclusion" ;
  827.         startbullet 219 120 365 167 ;
  828.         bullet "b0" 1 0 "If you are unsure about any of the material covered, you should take some or all of the lesson again." ;
  829.         bullet "b1" 1 11 "In Lesson 2 you'll learn how to access the Internet." ;
  830.         config __bitmapontrans 1 ;
  831.         config __bitmapontcolor green ;
  832.         bitmap "bit0" "internet.dll" "WIZ" 321 245 ;
  833.         startavi "l1e.avi" "jnk1.vcw" 15 78 ;
  834.         bitmap "cl" "internet.dll" "CLOUD3" 439 207 ;
  835.         config __textcolor medblue ;
  836.         text "tx0a1" 504 238 200 100 "Goodbye!" ;
  837.         status "Click to return to the Course Menu" ;
  838.         anykeymouse 17 ;
  839.         clrscr ;
  840.         endimg ;
  841.         endavi ;
  842. endseg ;
  843.  
  844.